Class: com.microstrategy.web.app.taglibs.ElseTag
Usage:
This custom tag is closely related to the IF tag. It will render its body contents if the condition on the IF tag returnedFalse. For example:
<web:ifFeature name="accessibility">
<web:then>
This content will be rendered if the feature is enabled for the user
</web:then>
<web:else>
This content will be rendered only if the feature is not enabled for the user.
</web:else>
</web:ifFeature>
No attributes defined